html {
  width: 100%;
  height: 100%;
}
body {
  width: 100%;
  padding-bottom: 332px;
  min-height: calc(100% - 332px);
  position: relative;
  margin: 0;
}
@font-face {
  font-family: HYYL;
  src: url(../font/hyyl.ttf);
}
@font-face {
  font-family: HT;
  src: url(../font/SourceHanSansCN-Regular.otf);
}
* {
  font-family: HT;
}
.header {
  width: 100%;
  overflow: hidden;
}
.header .hbox {
  width: 1200px;
  padding: 10px 0;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.header .hbox .logo img {
  width: 300px;
  display: block;
}
.header .hbox .hcon {
  display: flex;
  align-items: center;
}
.header .hbox .hcon .phone {
  display: flex;
  align-items: center;
}
.header .hbox .hcon .phone img {
  width: 40px;
  display: block;
}
.header .hbox .hcon .phone span {
  display: block;
  margin-left: 10px;
  font-family: HYYL;
  font-size: 36px;
  color: #f9193b;
  background: linear-gradient(180deg, #f9193b 15%, #286be1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.header .hbox .hcon .image {
  margin-left: 20px;
}
.header .hbox .hcon .image img {
  width: 40px;
  display: block;
}
.header .hbox .hcon .image:nth-child(3) {
  display: none;
}
@media (max-width: 1200px) {
  .header .hbox {
    width: 90%;
  }
}
@media (max-width: 760px) {
  .header .hbox .logo img {
    width: 240px;
  }
  .header .hbox .hcon .phone {
    display: none;
  }
  .header .hbox .hcon .image {
    margin-left: 20px;
  }
  .header .hbox .hcon .image img {
    width: 30px;
  }
  .header .hbox .hcon .image:nth-child(3) {
    display: block;
  }
}
@media (max-width: 540px) {
  .header .hbox .logo img {
    width: 220px;
  }
  .header .hbox .hcon .phone {
    display: none;
  }
  .header .hbox .hcon .image {
    margin-left: 0;
  }
  .header .hbox .hcon .image img {
    width: 26px;
  }
  .header .hbox .hcon .image:nth-child(3) {
    margin-left: 10px;
  }
}
.menu {
  width: 100%;
  background-color: #454545;
  border-bottom: 3px solid #ddb166;
}
.menu .menu_box {
  width: 1200px;
  height: 100%;
  margin: 0 auto;
}
.menu .menu_box ul {
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.menu .menu_box ul .menu_active {
  background-color: #ddb166;
}
.menu .menu_box ul li {
  width: 12.5%;
  height: 60px;
  list-style: none;
  position: relative;
  display: flex;
  align-items: center;
}
.menu .menu_box ul li a {
  display: block;
  text-decoration: none;
  text-align: center;
  width: 100%;
  color: white;
  font-size: 18px;
}
.menu .menu_box ul li ul {
  height: auto;
  display: none;
  position: absolute;
  z-index: 20;
  top: 60px;
  left: 0;
  padding-top: 10px;
  background-color: rgba(100, 100, 100, 0.5);
}
.menu .menu_box ul li ul li {
  width: calc(100% - 20px);
  padding: 8px 10px;
  height: auto;
}
.menu .menu_box ul li ul li a {
  text-align: left;
  font-size: 15px;
}
.menu .menu_box ul li ul li ul {
  left: 100%;
  top: 0;
  padding-top: 0;
  background-color: rgba(100, 100, 100, 0.8);
}
.menu .menu_box ul li:hover {
  background-color: #ddb166;
}
.menu .menu_box ul li:hover ul {
  display: block;
}
.menu .menu_box ul li:hover ul li ul {
  display: none;
}
.menu .menu_box ul li:hover ul li:hover {
  background-color: rgba(100, 100, 100, 0.8);
}
.menu .menu_box ul li:hover ul li:hover ul {
  display: block;
}
@media (max-width: 1200px) {
  .menu .menu_box {
    width: 100%;
  }
}
@media (max-width: 760px) {
  .menu .menu_box ul li {
    width: 25%;
    height: 40px;
  }
  .menu .menu_box ul li ul {
    top: 40px;
  }
}
@media (max-width: 760px) {
  .menu .menu_box ul li a {
    font-size: 15px;
  }
}
.more {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.more a {
  font-size: 20px;
  color: white;
  display: block;
  padding: 5px 20px;
  background-color: black;
  text-decoration: none;
}
.more a:hover{
	background-color: #ddb166;
}
@media (max-width: 540px) {
  .more {
    justify-content: center;
  }
  .more a {
    font-size: 16px;
  }
}
.more2 {
  width: 100%;
  margin-top: 30px;
  display: flex;
  justify-content: center;
}
.more2 a {
  text-decoration: none;
  color: black;
  display: block;
  width: 300px;
  padding: 5px 0;
  border: 2px solid black;
  font-size: 26px;
  text-align: center;
}
.more2 a:hover{
	border: 2px solid #ddb166;
	color: #ddb166;
}
@media (max-width: 540px) {
  .more2 {
    margin-top: 20px;
  }
  .more2 a {
    width: 160px;
    font-size: 18px;
  }
}
.index_title {
  width: 1400px;
  margin: 0 auto;
  margin-bottom: 40px;
  display: flex;
  justify-content: flex-start;
}
.index_title .it_box {
  position: relative;
  padding-bottom: 30px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: flex-end;
}
.index_title .it_box span {
  white-space: nowrap;
  display: block;
  font-size: 44px;
  font-weight: 600;
  line-height: 50px;
}
.index_title .it_box span:nth-child(2) {
  font-size: 28px;
  color: #ddb166;
  font-weight: 400;
  margin: 0 4px;
  line-height: 42px;
}
.index_title .it_box span:nth-child(3) {
  font-size: 24px;
  letter-spacing: 2px;
  color: #ddb166;
  font-style: oblique;
  font-weight: 400;
  line-height: 36px;
  text-transform: uppercase;
}
.index_title .it_box:after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 22px;
  background: url(../img/005.png) no-repeat;
  background-size: auto 100%;
  background-position: left center;
}
@media (max-width: 1400px) {
  .index_title {
    width: 90%;
  }
}
@media (max-width: 760px) {
  .index_title {
    justify-content: center;
  }
  .index_title .it_box {
    padding-bottom: 25px;
  }
  .index_title .it_box span {
    font-size: 34px;
    line-height: 50px;
  }
  .index_title .it_box span:nth-child(2) {
    font-size: 22px;
    margin: 0 4px;
    line-height: 42px;
  }
  .index_title .it_box span:nth-child(3) {
    font-size: 22px;
    letter-spacing: 2px;
    line-height: 36px;
  }
  .index_title .it_box:after {
    bottom: 0;
    height: 20px;
  }
}
@media (max-width: 540px) {
  .index_title .it_box {
    padding-bottom: 20px;
  }
  .index_title .it_box span {
    font-size: 24px;
  }
  .index_title .it_box span:nth-child(2) {
    font-size: 18px;
  }
  .index_title .it_box span:nth-child(3) {
    font-size: 15px;
    letter-spacing: 1px;
  }
  .index_title .it_box:after {
    bottom: 0;
    height: 15px;
  }
}
.our {
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
}
.our .image {
  width: 50%;
  min-height: 10px;
}
.our .image img {
  width: 100%;
  display: block;
}
.our .image .b {
  display: none;
}
.our .our_box {
  width: 36%;
  margin: 0 7%;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.our .our_box .index_title {
  width: 100%;
  justify-content: center;
  margin-bottom: 0;
}
.our .our_box strong {
  width: 100%;
  display: block;
  font-weight: 400;
  color: #ddb166;
  font-size: 36px;
  margin-top: 20px;
  text-align: center;
}
.our .our_box p {
  width: 100%;
  margin: 30px 0;
  text-align: justify;
  font-size: 19px;
  letter-spacing: 2px;
  line-height: 34px;
  color: #737373;
  text-indent: 2em;
}
@media (max-width: 1200px) {
  .our {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .our .image {
    width: 100%;
  }
  .our .our_box {
    width: 90%;
  }
}
@media (max-width: 760px) {
  .our .image .b {
    display: block;
  }
  .our .image .a {
    display: none;
  }
  .our .our_box strong {
    font-size: 26px;
    margin-top: 20px;
  }
}
@media (max-width: 540px) {
  .our .our_box strong {
    font-size: 22px;
    margin-top: 15;
  }
  .our .our_box p {
    margin: 15px 0;
    font-size: 16px;
  }
}
@media (max-width: 420px) {
  .our .our_box strong {
    font-size: 20px;
  }
}
.product {
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
}
.product .pro_box {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-flow: row wrap;
}
.product .pro_box a {
  width: calc(((100% - 60px) / 3) - 8px);
  margin-right: 30px;
  margin-bottom: 30px;
  display: block;
  text-decoration: none;
  border: 4px solid #ddb166;
  overflow: hidden;
  position: relative;
}
.product .pro_box a img {
  display: block;
  width: 100%;
}
.product .pro_box a span {
  display: block;
  width: calc(100% - 20px);
  padding: 15px 10px;
  font-size: 26px;
  text-align: center;
  color: black;
  background-color: white;
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
}
.product .pro_box a P {
  margin: 0;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  display: none;
  justify-content: center;
  align-items: center;
}
.product .pro_box a P img {
  width: 20%;
  display: block;
}
.product .pro_box a:hover img {
  transform: scale(1.2);
  transition: 300ms;
}
.product .pro_box a:hover span {
  background-color: #ddb166;
  color: white;
}
.product .pro_box a:hover p {
  display: flex;
}
.product .pro_box a:nth-child(3n) {
  margin-right: 0;
}
.product .pro_box a:nth-last-child(1) {
  background: url(../img/019.jpg);
  background-size: 100% 100%;
}
.product .pro_box a:nth-last-child(1) .right_btn {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.product .pro_box a:nth-last-child(1) .right_btn .image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product .pro_box a:nth-last-child(1) .right_btn .image img {
  display: block;
  width: 70px;
}
.product .pro_box a:nth-last-child(1) .right_btn .image img:nth-child(2) {
  display: none;
}
.product .pro_box a:nth-last-child(1) .right_btn p {
  font-size: 26px;
  text-align: center;
  margin: 0;
  margin-top: 20px;
  color: white;
}
.product .pro_box a:nth-last-child(1) .right_btn:hover .image {
  background-color: #f8c573;
  transition: 300ms;
}
.product .pro_box a:nth-last-child(1) .right_btn:hover .image img {
  display: none;
}
.product .pro_box a:nth-last-child(1) .right_btn:hover .image img:nth-child(2) {
  display: block;
}
@media (max-width: 1200px) {
  .product .pro_box {
    width: 90%;
  }
}
@media (max-width: 1000px) {
  .product .pro_box a span {
    font-size: 24px;
  }
  .product .pro_box a:nth-last-child(1) .right_btn .image {
    width: 80px;
    height: 80px;
  }
  .product .pro_box a:nth-last-child(1) .right_btn .image img {
    width: 50px;
  }
  .product .pro_box a:nth-last-child(1) .right_btn p {
    font-size: 24px;
  }
}
@media (max-width: 760px) {
  .product .pro_box a {
    width: calc(((100% - 30px) / 2) - 8px);
  }
  .product .pro_box a span {
    padding: 8px 10px;
    font-size: 20px;
  }
  .product .pro_box a:nth-child(3n) {
    margin-right: 30px;
  }
  .product .pro_box a:nth-child(2n) {
    margin-right: 0;
  }
  .product .pro_box a:nth-last-child(1) .right_btn .image {
    width: 60px;
    height: 60px;
  }
  .product .pro_box a:nth-last-child(1) .right_btn .image img {
    width: 30px;
  }
  .product .pro_box a:nth-last-child(1) .right_btn p {
    font-size: 20px;
  }
}
@media (max-width: 540px) {
  .product .pro_box a {
    width: calc(((100% - 15px) / 2) - 4px);
    margin-right: 15px;
    border: 2px solid #ddb166;
  }
  .product .pro_box a span {
    width: calc(100% - 10px);
    padding: 5px 5px;
    font-size: 14px;
  }
  .product .pro_box a:nth-child(3n) {
    margin-right: 15px;
  }
  .product .pro_box a:nth-child(2n) {
    margin-right: 0;
  }
  .product .pro_box a:nth-last-child(1) .right_btn .image {
    width: 55px;
    height: 55px;
  }
  .product .pro_box a:nth-last-child(1) .right_btn .image img {
    width: 40px;
  }
  .product .pro_box a:nth-last-child(1) .right_btn p {
    font-size: 16px;
    margin-top: 10px;
  }
}
.honor {
  width: 100%;
  padding: 40px 0;
  background: url(../img/008.jpg) no-repeat;
  background-size: 100% 340px;
}
.honor .index_title {
  justify-content: flex-end;
}
.honor .index_title .it_box span {
  color: white;
}
.honor .index_title .it_box span:nth-child(2) {
  color: #ddb166;
}
.honor .index_title .it_box span:nth-child(3) {
  color: #ddb166;
}
.honor .honor_box {
  width: 1200px;
  margin: 0 auto;
  position: relative;
}
.honor .honor_box .swiper-button-next,
.honor .honor_box .swiper-button-prev:after {
  color: rgba(0, 0, 0, 0) !important;
}
.honor .honor_box .swiper-button-next,
.honor .honor_box .swiper-button-prev {
  width: 38px;
  height: 42px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.honor .honor_box .swiper-button-next {
  right: 0;
  background-image: url(../img/right.png);
}
.honor .honor_box .swiper-button-prev {
  left: 0;
  background-image: url(../img/left.png);
}
@media (max-width: 1200px) {
  .honor .honor_box {
    width: 90%;
  }
}
@media (max-width: 760px) {
  .honor {
    background: url(../img/021.jpg) no-repeat;
    background-size: 100% auto;
  }
  .honor .honor_box {
    width: 90%;
  }
  .honor .honor_box .swiper-button-next,
  .honor .honor_box .swiper-button-prev {
    width: 0;
    height: 0;
  }
}
.company {
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
}
.company .cpany_box {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.company .cpany_box a {
  width: 30%;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.company .cpany_box a .image {
  width: 100%;
  min-height: 10px;
}
.company .cpany_box a .image img {
  width: 100%;
  display: block;
}
.company .cpany_box a .text {
  width: calc(100% - 10px);
  padding: 0 5px;
  height: 50px;
  background-color: #4a4a4a;
  position: relative;
  z-index: 20;
}
.company .cpany_box a .text span {
  width: 100%;
  height: 50px;
  display: block;
  color: white;
  font-size: 22px;
  line-height: 50px;
  text-align: center;
  overflow-y: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.company .cpany_box a .text:before {
  content: "";
  position: absolute;
  left: 50%;
  margin-left: -7px;
  width: 15px;
  height: 15px;
  background-color: #4a4a4a;
  transform: rotate(45deg);
}
.company .cpany_box a:nth-child(2n-1) .text:before {
  bottom: -7px;
}
.company .cpany_box a:nth-child(2n) .image {
  order: 1;
}
.company .cpany_box a:nth-child(2n) .text {
  order: 2;
}
.company .cpany_box a:nth-child(2n) .text:before {
  top: -7px;
}
.company .cpany_box a:nth-child(1) .text {
  background-color: #ddb166;
}
.company .cpany_box a:nth-child(1) .text:before {
  background-color: #ddb166;
}
.company .cpany_box a:nth-child(n+4) {
  display: none;
}
.company .cpany_box a:hover .text {
  background-color: #ddb166;
}
.company .cpany_box a:hover .text:before {
  background-color: #ddb166;
}
@media (max-width: 1200px) {
  .company .cpany_box {
    width: 90%;
  }
  .company .cpany_box a .text span {
    font-size: 18px;
  }
}
@media (max-width: 760px) {
  .company .cpany_box a {
    width: 48%;
    margin-bottom: 20px;
  }
  .company .cpany_box a:nth-child(n+4) {
    display: flex;
  }
}
@media (max-width: 540px) {
  .company .cpany_box a {
    width: 48%;
    margin-bottom: 20px;
  }
  .company .cpany_box a .text {
    height: 34px;
  }
  .company .cpany_box a .text span {
    height: 34px;
    font-size: 15px;
    line-height: 34px;
  }
  .company .cpany_box a .text:before {
    margin-left: -5px;
    width: 12px;
    height: 12px;
  }
  .company .cpany_box a:nth-child(2n-1) .text:before {
    bottom: -5px;
  }
  .company .cpany_box a:nth-child(2n) .text:before {
    top: -5px;
  }
}
.new {
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
  background: #f0f0f0;
}
.new .index_title {
  justify-content: flex-end;
}
.new .new_box {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  height: 500px;
}
.new .new_box .new_list {
  width: 45%;
  margin-bottom: 15px;
}
.new .new_box .new_list a {
  width: 100%;
  text-decoration: none;
  display: block;
}
.new .new_box .new_list a .image {
  display: none;
  width: 100%;
}
.new .new_box .new_list a .image img {
  width: 100%;
  display: block;
}
.new .new_box .new_list a .text {
  width: calc(100% - 16px);
  padding: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.new .new_box .new_list a .text .text_1 {
  height: 80px;
  width: 80px;
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.new .new_box .new_list a .text .text_1 strong {
  font-size: 32px;
  color: black;
  letter-spacing: 2px;
  line-height: 36px;
}
.new .new_box .new_list a .text .text_1 strong:nth-child(2) {
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
}
.new .new_box .new_list a .text .text_2 {
  width: calc(100% - 100px);
  padding-left: 20px;
}
.new .new_box .new_list a .text .text_2 span {
  display: block;
  width: 100%;
  color: black;
  font-size: 18px;
  padding-bottom: 8px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.new .new_box .new_list a .text .text_2 p {
  color: #888888;
  font-size: 15px;
  line-height: 20px;
  text-align: justify;
  height: 40px;
  margin: 0;
  overflow: hidden;
  position: relative;
}
.new .new_box .new_list a .text .text_2 p:after {
  content: "...";
  position: absolute;
  top: 20px;
  right: 0;
  background-color: #f0f0f0;
  width: 15px;
  height: 20px;
}
.new .new_box .new_list .more3 {
  width: calc(100% - 16px);
  padding: 0 8px 15px 8px;
  background-color: white;
  display: none;
  justify-content: flex-start;
}
.new .new_box .new_list .more3 a {
  width: auto;
  text-decoration: none;
  display: block;
  padding: 6px 25px;
  background-color: #ddb166;
  color: white;
}
.new .new_box .new_list .more3 a:hover{
	background-color: black;
}
.new .new_box .new_list:nth-child(1) a .image {
  display: block;
}
.new .new_box .new_list:nth-child(1) a .text {
  background-color: white;
  justify-content: center;
}
.new .new_box .new_list:nth-child(1) a .text .text_1 {
  display: none;
}
.new .new_box .new_list:nth-child(1) a .text .text_2 {
  width: 100%;
  padding-left: 0;
}
.new .new_box .new_list:nth-child(1) a .text .text_2 p {
  height: 60px;
}
.new .new_box .new_list:nth-child(1) a .text .text_2 p:after {
  top: 40px;
  background-color: white;
}
.new .new_box .new_list:nth-child(1) .more3 {
  display: flex;
}
.new .new_box .new_list:hover a .text {
  background-color: white;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}
.new .new_box .new_list:hover a .text .text_1 {
  background-color: #ddb166;
}
.new .new_box .new_list:hover a .text .text_1 strong {
  color: white;
}
.new .new_box .new_list:hover a .text .text_2 p:after {
  background-color: white;
}
.new .new_box .new_c2 a .text {
  background-color: white;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}
.new .new_box .new_c2 a .text .text_1 {
  background-color: #ddb166;
}
.new .new_box .new_c2 a .text .text_1 strong {
  color: white;
}
.new .new_box .new_c2 a .text .text_2 p:after {
  background-color: white;
}
@media (max-width: 1200px) {
  .new .new_box {
    width: 90%;
  }
}
@media (max-width: 1000px) {
  .new .new_box {
    height: auto;
    flex-flow: row wrap;
  }
  .new .new_box .new_list {
    width: 100%;
  }
}
@media (max-width: 540px) {
  .new .new_box {
    height: auto;
    flex-flow: row wrap;
  }
  .new .new_box .new_list a .text .text_1 {
    height: 50px;
    width: 50px;
  }
  .new .new_box .new_list a .text .text_1 strong {
    font-size: 20px;
    line-height: 24px;
  }
  .new .new_box .new_list a .text .text_1 strong:nth-child(2) {
    font-size: 6px;
    line-height: 16px;
  }
  .new .new_box .new_list a .text .text_2 {
    width: calc(100% - 60px);
    padding-left: 0;
  }
  .new .new_box .new_list a .text .text_2 span {
    font-size: 14px;
    padding-bottom: 2px;
  }
  .new .new_box .new_list a .text .text_2 p {
    font-size: 11px;
    line-height: 15px;
    height: 30px;
  }
  .new .new_box .new_list a .text .text_2 p:after {
    top: 15px;
    width: 10px;
    height: 15px;
  }
  .new .new_box .new_list .more3 {
    width: calc(100% - 10px);
    padding: 0 5px 10px 5px;
  }
  .new .new_box .new_list .more3 a {
    display: block;
    padding: 4px 18px;
    background-color: #ddb166;
    color: white;
    font-size: 14px;
  }
  .new .new_box .new_list:nth-child(1) a .text .text_2 p {
    height: 45px;
  }
  .new .new_box .new_list:nth-child(1) a .text .text_2 p:after {
    top: 30px;
  }
}
.contact {
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
  background-color: #f0f0f0;
}
.contact .contact_box {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.contact .contact_box .ct_list {
  width: calc((100% - 40px) / 3);
  margin-right: 20px;
  padding: 40px 0;
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact .contact_box .ct_list img {
  width: 30px;
  display: block;
}
.contact .contact_box .ct_list p {
  font-size: 18px;
  margin: 16px 0;
}
.contact .contact_box .ct_list i {
  width: 30px;
  height: 4px;
  background-color: #ddb166;
}
.contact .contact_box .ct_list span {
  width: calc(100% - 20px);
  padding: 0 10px;
  margin-top: 20px;
  text-align: center;
  color: #797979;
  display: block;
  word-break: break-all;
  word-wrap: break-word;
}
.contact .contact_box .ct_list:nth-child(3) {
  margin-right: 0;
}
@media (max-width: 1200px) {
  .contact .contact_box {
    width: 90%;
  }
}
@media (max-width: 760px) {
  .contact .contact_box {
    flex-flow: row wrap;
  }
  .contact .contact_box .ct_list {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.link {
  width: 100%;
  padding: 40px 0;
  background: url(../img/014.jpg) no-repeat;
  background-size: cover;
}
.link .index_title {
  justify-content: flex-end;
}
.link .link_box {
  width: 1600px;
  margin: 0 auto;
  position: relative;
}
.link .link_box .swiper-button-next,
.link .link_box .swiper-button-prev:after {
  color: rgba(0, 0, 0, 0) !important;
}
.link .link_box .swiper-button-next,
.link .link_box .swiper-button-prev {
  width: 38px;
  height: 42px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.link .link_box .swiper-button-next {
  right: 0;
  background-image: url(../img/right2.png);
}
.link .link_box .swiper-button-prev {
  left: 0;
  background-image: url(../img/left2.png);
}
.link .link_box .link_active {
  background-color: #ddb166;
}
@media (max-width: 1600px) {
  .link .link_box {
    width: 96%;
  }
}
@media (max-width: 540px) {
  .link .link_box .swiper-button-next,
  .link .link_box .swiper-button-prev {
    width: 28px;
    height: 32px;
  }
}
.foot {
  width: 100%;
  background-color: #bdbcbc;
  position: absolute;
  bottom: 32px;
  left: 0;
}
.foot .foot_box {
  width: 1400px;
  height: 300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.foot .foot_box .foot1 .image1 {
  margin-bottom: 20px;
}
.foot .foot_box .foot1 .image1 img {
  width: 500px;
  display: block;
}
.foot .foot_box .foot1 .image2 img {
  width: 260px;
  display: block;
}
.foot .foot_box .foot2 .image1 {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}
.foot .foot_box .foot2 .image1 img {
  width: 300px;
  display: block;
}
.foot .foot_box .foot2 .image2 {
  display: flex;
  justify-content: center;
}
.foot .foot_box .foot2 .image2 .erwei {
  margin: 0 15px;
  padding: 5px;
  border: 2px solid white;
}
.foot .foot_box .foot2 .image2 .erwei img {
  width: 140px;
  display: block;
}
@media (max-width: 1400px) {
  .foot .foot_box {
    width: 90%;
  }
}
@media (max-width: 1000px) {
  .foot .foot_box {
    flex-direction: column;
    justify-content: center;
    height: 500px;
  }
  .foot .foot_box .foot1 {
    margin-bottom: 15px;
  }
  .foot .foot_box .foot1 .image1 {
    display: flex;
    justify-content: center;
  }
  .foot .foot_box .foot1 .image2 {
    display: flex;
    justify-content: center;
  }
}
@media (max-width: 540px) {
  .foot .foot_box {
    height: 350px;
  }
  .foot .foot_box .foot1 .image1 {
    margin-bottom: 15px;
  }
  .foot .foot_box .foot1 .image1 img {
    width: 300px;
  }
  .foot .foot_box .foot1 .image2 img {
    width: 200px;
  }
  .foot .foot_box .foot2 .image1 {
    margin-bottom: 15px;
  }
  .foot .foot_box .foot2 .image1 img {
    width: 220px;
  }
  .foot .foot_box .foot2 .image2 .erwei {
    margin: 0 10px;
  }
  .foot .foot_box .foot2 .image2 .erwei img {
    width: 100px;
  }
}
@media (max-width: 540px) {
  .foot {
    bottom: 102px;
  }
}
@media (max-width: 1000px) {
  body {
    padding-bottom: 532px;
    min-height: calc(100% - 532px);
  }
}
@media (max-width: 540px) {
  body {
    padding-bottom: 452px;
    min-height: calc(100% - 452px);
  }
}
.foot_copyright {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 32px;
  background-color: #595959;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row wrap;
}
.foot_copyright .fc {
  text-decoration: none;
  color: white;
  font-size: 12px;
  margin: 0 4px;
}
@media (max-width: 540px) {
  .foot_copyright {
    bottom: 70px;
  }
}
.tabber {
  width: 100%;
  height: 70px;
  display: none;
  justify-content: space-between;
  background-color: #e7b765;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 60;
}
.tabber .tabber_btn {
  width: 25%;
  position: relative;
}
.tabber .tabber_btn a {
  height: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  align-items: center;
  justify-content: center;
}
.tabber .tabber_btn a img {
  width: 30px;
  display: block;
}
.tabber .tabber_btn a span {
  display: block;
  font-size: 12px;
  color: white;
  margin-top: 3px;
}
.tabber .tabber_btn:after {
  content: "";
  position: absolute;
  top: 0;
  right: -0.5px;
  width: 1px;
  height: 100%;
  background-color: #e3e3e3;
}
.tabber .tabber_btn:nth-last-child(1):after {
  display: none;
}
@media (max-width: 540px) {
  .tabber {
    display: flex;
  }
}
.common_image {
  width: 100%;
  min-height: 10px;
}
.common_image img {
  width: 100%;
  display: block;
}
.common {
  width: 100%;
  overflow: hidden;
  margin-top: 30px;
  margin-bottom: 15px;
}
.common .commonbox {
  width: 1200px;
  margin: 0 auto;
}
.common .commonbox .common_title {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 3px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #676767;
}
.common .commonbox .common_title .ge {
  width: 50px;
  height: 4px;
  background-color: #0262b8;
  margin-top: 5px;
}
@media (max-width: 1200px) {
  .common .commonbox {
    width: 90%;
  }
}
.com_our {
  width: 100%;
}
.com_our .com_our_title {
  width: 100%;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #0262b8;
}
.com_our .time {
  width: 100%;
  text-align: center;
  font-size: 14px;
  color: #636363;
}
.com_our .com_our_content {
  width: 100%;
  margin-top: 10px;
  text-align: justify;
}
.com_our .com_our_content img {
  max-width: 100%;
}
.com_column_box {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.com_column_box .column {
  width: 200px;
  height: 100%;
}
.com_column_box .column h2 {
  width: 100%;
  height: 60px;
  background-color: #ddb166;
  color: white;
  font-size: 24px;
  line-height: 60px;
  letter-spacing: 2px;
  text-align: center;
  margin: 0;
  border: 1px solid #ddb166;
}
.com_column_box .column .column_box {
  width: 100%;
  border-left: 1px solid #454545;
  border-right: 1px solid #454545;
}
.com_column_box .column .column_box a {
  width: calc(100% - 20px);
  padding: 5px 10px;
  border-bottom: 1px solid #454545;
  min-height: 40px;
  text-decoration: none;
  color: #454545;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
}
.com_column_box .column .column_box a span {
  display: block;
  letter-spacing: 2px;
  width: calc(100% - 30px);
  position: relative;
  padding-left: 15px;
}
.com_column_box .column .column_box a span:after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  top: 50%;
  left: 0;
  margin-top: -2.5px;
  background-color: #454545;
}
.com_column_box .column .column_box a img {
  width: 15px;
  display: block;
}
.com_column_box .column .column_box a:hover {
  background-color: #888687;
  color: white;
}
.com_column_box .column .column_box .column2 {
  width: 100%;
  display: none;
}
.com_column_box .column .column_box .column2 a {
  width: calc(100% - 40px);
  height: auto;
  min-height: 0;
  padding: 10px 20px;
  display: block;
  text-align: center;
  font-size: 16px;
}
.com_column_box .column .column_box .column2 a:nth-last-child(1) {
  border-bottom: 1px solid #454545;
}
.com_column_box .com_content_box {
  width: calc(100% - 240px);
}
@media (max-width: 1200px) {
  .com_column_box {
    flex-direction: column;
    justify-content: center;
  }
  .com_column_box .column {
    width: 100%;
    height: auto;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
  }
  .com_column_box .column h2 {
    display: none;
  }
  .com_column_box .column .column_box {
    width: calc(((100% - 20px) / 3) - 2px);
    border-left: 0;
    border-right: 0;
    border: 1px solid #454545;
    margin-bottom: 10px;
    margin-right: 10px;
    position: relative;
  }
  .com_column_box .column .column_box a {
    border-bottom: 0;
    justify-content: center;
  }
  .com_column_box .column .column_box a span {
    width: calc(100% - 15px);
    padding-left: 0;
    text-align: center;
  }
  .com_column_box .column .column_box a span:after {
    display: none;
  }
  .com_column_box .column .column_box a img {
    width: 15px;
  }
  .com_column_box .column .column_box .column2 {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 2;
    width: calc(100% - 2px);
    background-color: white;
    border: 1px solid #454545;
  }
  .com_column_box .column .column_box .column2 a {
    width: calc(100% - 20px);
    padding: 10px 10px;
    font-size: 16px;
    border-bottom: 1px solid #454545;
  }
  .com_column_box .column .column_box .column2 a:nth-last-child(1) {
    border-bottom: 0;
  }
  .com_column_box .column .column_box:nth-child(3n+1) {
    margin-right: 0;
  }
  .com_column_box .com_content_box {
    width: 100%;
  }
}
@media (max-width: 540px) {
  .com_column_box .column .column_box {
    width: calc(((100% - 10px) / 2) - 2px);
  }
  .com_column_box .column .column_box a {
    width: calc(100% - 10px);
    padding: 5px;
    min-height: 0;
    font-size: 14px;
  }
  .com_column_box .column .column_box a span {
    width: calc(100% - 10px);
  }
  .com_column_box .column .column_box a img {
    width: 10px;
  }
  .com_column_box .column .column_box .column2 a {
    width: calc(100% - 10px);
    padding: 5px;
    font-size: 14px;
  }
  .com_column_box .column .column_box:nth-child(3n+1) {
    margin-right: 10px;
  }
  .com_column_box .column .column_box:nth-child(2n+1) {
    margin-right: 0;
  }
}

.pagination {
  width: 100%;
  order: 6;
  display: flex;
  justify-content: center;
}
.pagination .btn-group {
  width: 200px;
  margin: 5px 0 20px 0;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}
.pagination .btn-group .pagebtn_a,
.pagination .btn-group .pagebtn_s {
  width: 75px;
  height: 30px;
  line-height: 30px;
  text-align: center;
}
.pagination .btn-group .pagebtn_s {
  color: #bebebe;
  border: 1px solid #bebebe;
}
.pagination .btn-group .pagebtn_a {
  text-decoration: none;
  color: black;
  border: 1px solid black;
}
.pagination .btn-group .pagebtn_a:hover {
  background-color: #ddb166;
  color: white;
  cursor: pointer;
}
.com_product_box {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
}
.com_product_box a {
  display: block;
  text-decoration: none;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
  width: calc((100% - 40px) / 3);
  margin-right: 20px;
  margin-bottom: 20px;
}
.com_product_box a .image {
  width: 100%;
  position: relative;
}
.com_product_box a .image img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  display: block;
}
.com_product_box a .image P {
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  display: none;
  justify-content: center;
  align-items: center;
}
.com_product_box a .image P img {
  width: 20%;
  display: block;
}
.com_product_box a span {
  display: block;
  width: calc(100% - 10px);
  padding: 6px 5px;
  font-size: 18px;
  color: black;
  text-align: center;
}
.com_product_box a:nth-child(3n) {
  margin-right: 0;
}
.com_product_box a:hover .image p {
  display: flex;
}
.com_product_box a:hover span {
  color: white;
  background-color: #ddb166;
}
@media (max-width: 760px) {
  .com_product_box a {
    width: calc((100% - 15px) / 2);
    margin-right: 15px;
  }
  .com_product_box a:nth-child(3n) {
    margin-right: 15px;
  }
  .com_product_box a:nth-child(2n) {
    margin-right: 0;
  }
}
.com_new_box {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.com_new_box a {
  width: calc(48% - 16px);
  padding: 8px;
  display: block;
  text-decoration: none;
  margin-bottom: 20px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: space-between;
}
.com_new_box a .text_1 {
  color: white;
  height: 100%;
  width: 80px;
  background-color: #ddb166;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.com_new_box a .text_1 strong {
  font-size: 32px;
  line-height: 36px;
}
.com_new_box a .text_1 strong:nth-child(2) {
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
}
.com_new_box a .text_2 {
  width: calc(100% - 100px);
}
.com_new_box a .text_2 span {
  display: block;
  width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  font-size: 21px;
  color: black;
}
.com_new_box a .text_2 span:nth-child(2) {
  color: #909090;
  font-size: 12px;
  margin: 5px 0;
}
.com_new_box a .text_2 p {
  color: #626262;
  font-size: 15px;
  margin: 0;
  line-height: 23px;
  height: 46px;
  text-align: justify;
  overflow: hidden;
  position: relative;
}
.com_new_box a .text_2 p:after {
  content: "...";
  position: absolute;
  top: 23px;
  right: 0;
  width: 16px;
  height: 23px;
  background-color: white;
}
.com_new_box a:hover .text_1 {
  background-color: #454545;
  transition: 300ms;
}
@media (max-width: 760px) {
  .com_new_box a {
    width: calc(100% - 16px);
  }
  .com_new_box a .text_1 {
    width: 50px;
  }
  .com_new_box a .text_1 strong {
    font-size: 21px;
    line-height: 26px;
  }
  .com_new_box a .text_1 strong:nth-child(2) {
    font-size: 8px;
    line-height: 16px;
  }
  .com_new_box a .text_2 {
    width: calc(100% - 60px);
  }
  .com_new_box a .text_2 span {
    font-size: 18px;
  }
  .com_new_box a .text_2 span:nth-child(2) {
    font-size: 11px;
    margin: 3px 0;
  }
  .com_new_box a .text_2 p {
    color: #626262;
    font-size: 13px;
    line-height: 18px;
    height: 36px;
  }
  .com_new_box a .text_2 p:after {
    top: 18px;
    width: 12px;
    height: 18px;
  }
}
